home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / prgtools / prtsut53.zip / SU1CP_16.ZIP / BANDIT.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-02  |  658b  |  49 lines

  1. {
  2.   BandIt - Report Components - Band Printing
  3.  
  4.   Copyright (c), 1996, Calitz Bros.   All rights reserved
  5. }
  6.  
  7. unit Bandit;
  8.  
  9.  
  10. interface
  11.  
  12. uses
  13.   Classes,
  14.   DsgnIntf,
  15.   Dialogs,
  16.   SysUtils,
  17.  
  18.   CB_Types,
  19.   CB_Gdi,
  20.   CB_MFunc,
  21.   FuncsDb,
  22.   PrintWiz,
  23.   AddIt,
  24.   cbband,
  25.   cbreport,
  26.   cb_calc,
  27.   cbSystem,
  28.   cbdetban,
  29.   CBLabel,
  30.   CBSubDet,
  31.   CBAbout;
  32.  
  33.  
  34. procedure Register;
  35.  
  36. implementation
  37.  
  38.   procedure Register;
  39.  
  40.   begin
  41.     RegisterComponents('BandIt',[TCBReport, TCBBand,TCBDetailBand,
  42.         TCBSubDetBand, TCBLabelBand, TCBCalc, TCBSystem]);
  43.  
  44.     RegisterComponentEditor(TCBReport, TCBRepEditor);
  45.   end;
  46.  
  47.  
  48. end.
  49.